Matrix decomposition

In the mathematical discipline of linear algebra, a matrix decomposition is a factorization of a matrix into some canonical form. There are many different matrix decompositions; each finds use among a particular class of problems.

Contents

Example

In numerical analysis, different decompositions are used to implement efficient matrix algorithms.

For instance, when solving a system of linear equations Ax=b, the matrix A can be decomposed via the LU decomposition. The LU decomposition factorizes a matrix into a lower triangular matrix L and an upper triangular matrix U. The systems L(Ux)=b and Ux=L^{-1}b require fewer additions and multiplications to solve, compared with the original system Ax=b, though one might require significantly more digits in inexact arithmetic such as floating point.

Similarly, the QR decomposition expresses A as QR with Q a unitary matrix and R an upper triangular matrix. The system Q(Rx) = b is solved by Rx = QTb = c, and the system Rx = c is solved by 'back substitution'. The number of additions and multiplications required is about twice that of using the LU solver, but no more digits are required in inexact arithmetic because the QR decomposition is numerically stable.

Decompositions related to solving systems of linear equations

LU decomposition

LU reduction

Block LU decomposition

Rank factorization

Cholesky decomposition

QR decomposition

RRQR factorization

Singular value decomposition

Decompositions based on eigenvalues and related concepts

Eigendecomposition

Jordan decomposition

The Jordan normal form and the Jordan–Chevalley decomposition

Schur decomposition

QZ decomposition

Takagi's factorization

Other decompositions

References

  1. ^ C. Simon and L. Blume (1994), Mathematics for Economists, Ch. 7. Norton, ISBN 0393957330.

External links